From c18158b812169ee842cd4c42e1f30ecdfa22e523 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 20 Mar 2015 19:33:12 -0700 Subject: [PATCH] Update error message for missing examples --- tests/test_cargo_test.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_cargo_test.rs b/tests/test_cargo_test.rs index 1d3df2e89..d8b5fe28c 100644 --- a/tests/test_cargo_test.rs +++ b/tests/test_cargo_test.rs @@ -1356,11 +1356,11 @@ test!(bad_example { assert_that(p.cargo_process("run").arg("--example").arg("foo"), execs().with_status(101).with_stderr("\ -no example target named `foo` to run +no example target named `foo` ")); assert_that(p.cargo_process("run").arg("--bin").arg("foo"), execs().with_status(101).with_stderr("\ -no bin target named `foo` to run +no bin target named `foo` ")); }); -- 2.30.2